home *** CD-ROM | disk | FTP | other *** search
- // Copyright (c) 1994, University of Kansas, All Rights Reserved
- //
- // Class: TURLView
- // Include File: turlview.h
- // Purpose: Provide a view for any URL
- // Remarks/Portability/Dependencies/Restrictions:
- // Revision History:
- // 04-08-94 created
- #include"turlview.h"
-
- Boolean TURLView::isDownload() {
- // Purpose: Tell the caller wether or not this was a file
- // downloaded.
- // Arguments: void
- // Return Value: Boolean True if was a download.
- // False if wasn't a download.
- // Remarks/Portability/Dependencies/Restrictions:
- // This function works in conjunction with the DoNotDisplay
- // member.
- // Revision History:
- // 04-08-94 created
-
- // Just return our value that is already set.
- return(B_download);
- }